home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / parser.jar / org / xml / sax / HandlerBase.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-02-23  |  1.6 KB  |  48 lines

  1. package org.xml.sax;
  2.  
  3. public class HandlerBase implements EntityResolver, DTDHandler, DocumentHandler, ErrorHandler {
  4.    public void characters(char[] var1, int var2, int var3) throws SAXException {
  5.    }
  6.  
  7.    public void endDocument() throws SAXException {
  8.    }
  9.  
  10.    public void endElement(String var1) throws SAXException {
  11.    }
  12.  
  13.    public void error(SAXParseException var1) throws SAXException {
  14.    }
  15.  
  16.    public void fatalError(SAXParseException var1) throws SAXException {
  17.       throw var1;
  18.    }
  19.  
  20.    public void ignorableWhitespace(char[] var1, int var2, int var3) throws SAXException {
  21.    }
  22.  
  23.    public void notationDecl(String var1, String var2, String var3) {
  24.    }
  25.  
  26.    public void processingInstruction(String var1, String var2) throws SAXException {
  27.    }
  28.  
  29.    public InputSource resolveEntity(String var1, String var2) throws SAXException {
  30.       return null;
  31.    }
  32.  
  33.    public void setDocumentLocator(Locator var1) {
  34.    }
  35.  
  36.    public void startDocument() throws SAXException {
  37.    }
  38.  
  39.    public void startElement(String var1, AttributeList var2) throws SAXException {
  40.    }
  41.  
  42.    public void unparsedEntityDecl(String var1, String var2, String var3, String var4) {
  43.    }
  44.  
  45.    public void warning(SAXParseException var1) throws SAXException {
  46.    }
  47. }
  48.